home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / management / BadBinaryOpValueExpException.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  679 b   |  19 lines

  1. package javax.management;
  2.  
  3. public class BadBinaryOpValueExpException extends Exception {
  4.    private static final long serialVersionUID = 5068475589449021227L;
  5.    private ValueExp exp;
  6.  
  7.    public BadBinaryOpValueExpException(ValueExp var1) {
  8.       this.exp = var1;
  9.    }
  10.  
  11.    public ValueExp getExp() {
  12.       return this.exp;
  13.    }
  14.  
  15.    public String toString() {
  16.       return "BadBinaryOpValueExpException: " + this.exp;
  17.    }
  18. }
  19.